home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_01_06
/
1n06038a
< prev
next >
Wrap
Text File
|
1990-09-29
|
265b
|
24 lines
Listing 2
uses
scan;
var
tc : token_code;
begin
start_scan;
repeat
tc := get_token;
write(token_code_image[tc]);
if tc = TC_INT then
write(' : ', int_value);
writeln;
if tc = TC_BAD then
restart_scan;
until tc = TC_EOF;
end.